home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 6_functions / uname < prev    next >
Text File  |  2001-03-21  |  933b  |  26 lines

  1. Synopsis:
  2.    $uname(<description>)
  3.  
  4. Technical:
  5.    This function returns system information about the machine on which EPIC
  6.    is running, similar to the uname(2) system call.
  7.  
  8. Returns:
  9.    the string <description> parsed according to the following table:
  10.  
  11.    Any instance of         will be replaced with
  12.  ------------------------------------------------------------------
  13.    %m                      The "machine" (architecture)
  14.    %n                      The "Node" (hostname)
  15.    %r                      The "Release" of the operating system
  16.    %s                      The "Name" of the operating system
  17.    %v                      The "Version" of the operating system
  18.    %a                      The logical value of "%s %n %r %v %m"
  19.    %%                      A single %
  20.  
  21. Examples:
  22.    $uname(This machine (%n) is a %m running %s %r)
  23.      in one case could return:
  24.    This machine (paradigm) is a i686 running Linux 2.2.0
  25.  
  26.